home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright © 1989,1990 by Succinct Systems
-
- 433 Huronview
- Ann Arbor, MI 48103
- (313) 663-4903
-
- File: CPlusCovers.h
- Model: THINK C 4.0, MPW C 3.0
-
- ABSTRACT:
- basic C++ conversion symbology
-
- NOTES:
- none yet.
-
- KNOWN BUGS:
- none yet.
-
- HISTORY:
- DAS 15-Dec-89 created this file (David A. Surovell)
- DAS 05-Apr-90 put file to work
- */
-
- #define _H_CPlusCovers
-
- #ifdef THINK_C
-
- #ifndef const
- #define const
- #endif const
-
- #define class struct
-
- #define public
- #define private
- #define protected
- #define friend
- #define virtual
-
- #endif THINK_C
-